home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / SERVER / ServerBitmap.h < prev    next >
C/C++ Source or Header  |  1989-12-21  |  326b  |  20 lines

  1. #ifndef ServerBitmap_First
  2. #define ServerBitmap_First
  3.  
  4. #include "Bitmap.h"
  5.  
  6. class ServerBitmap: public Bitmap {
  7.     int id;
  8.  
  9. public: 
  10.     ServerBitmap(Point sz, u_short *data, u_short depth);
  11.     ~ServerBitmap();
  12.     int loadBitmap();
  13.     int GetId()
  14.     { return (id >= 0) ? id : loadBitmap(); }
  15. };
  16.  
  17. #endif ServerBitmap_First
  18.  
  19.  
  20.